home *** CD-ROM | disk | FTP | other *** search
- ' This simple macro illustrates window placement in DesignCAD
- ' for both the input and output windows
- '
- Sys(130) = 20
- Sys(131) = 20
- Input "Enter Number", KDW$
-
- Sys(132) = 20
- Sys(133) = 20
- Window 3,23
- Print KDW$
- AnyKey
-
- Sys(130) = -10000
- Sys(131) = -10000
- Input "Enter Number", KDW2$
-
- Sys(132) = -10000
- Sys(133) = -10000
- Window 3,23
- Print KDW2$
- AnyKey
-
- '130 - Input window left boundary pixel location (-10000 to center)
- '131 - Input window top boundary pixel location (-10000 to center)
- '132 - Output window left boundary pixel location (-10000 to center)
- '133 - Output window left boundary pixel location (-10000 to center)